private static readonly int[] FooDefault = new int[] { 5, 10 }; public void Foo(int[] x = null) { x = x ?? FooDefault; }